Dashboard Temp Share Shortlinks Frames API

huxn-webdev - HTMLify profile

files of /huxn-webdev/HTML-CSS-JavaScript-100-Projects/15. Background Color Changer/

app.js /huxn-webdev/HTML-CSS-JavaScript-100-Projects/15. Background Color Changer/app.js
14 Views
0 Comments
const btn = document.getElementById("btn");
let hex = document.getElementById("hexCode");

function randomColor() {
let letter
index.html /huxn-webdev/HTML-CSS-JavaScript-100-Projects/15. Background Color Changer/index.html
16 Views
0 Comments
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta nam
style.css /huxn-webdev/HTML-CSS-JavaScript-100-Projects/15. Background Color Changer/style.css
12 Views
0 Comments
body {
background: blueviolet;
min-height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
ali